Security News
Input Validation Vulnerabilities Dominate MITRE's 2024 CWE Top 25 List
MITRE's 2024 CWE Top 25 highlights critical software vulnerabilities like XSS, SQL Injection, and CSRF, reflecting shifts due to a refined ranking methodology.
InCache is a module that store any info in memory, it can be used for example for storing server sessions, caching http response or sharing singleton object in your apps. It also give you the possibility to save data on disk so you can avoid the data loss when the process exit or restart.
npm install incache --save
const InCache = require('incache');
const store = new InCache();
// Create a record with key 'my key'
store.set('my key', 'my value');
// Update 'my key'
store.set('my key', {a: 1, b: 2});
// Remove 'my key'
store.remove('my key');
// Clear
store.clear();
// Expires after 2 seconds
incache.set('my string', 'hello world', {maxAge: 2000});
// Or expires on...
incache.set('my string', 'hello world', {expires: '2028-08-22 12:00:00'});
// Triggered when a record has been deleted
incache.onRemoved(key => {
console.log(key);
});
// Triggered when a record has been created
incache.onCreated((key, record) => {
console.log(key, record);
});
//Triggered when a record has been updated
incache.onUpdated((key, record) => {
console.log(key, record);
});
<script src="node_modules/incache/dist/incache.min.js"></script>
<script src="https://unpkg.com/incache/dist/incache.min.js"></script>
<script src="https://cdn.jsdelivr.net/npm/incache/dist/incache.min.js"></script>
You can view the changelog here
InCache is open-sourced software licensed under the MIT license
[4.2.1] - 2017-09-01
FAQs
Powerful key/value in-memory storage or on disk to persist some data
The npm package incache receives a total of 54 weekly downloads. As such, incache popularity was classified as not popular.
We found that incache demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 2 open source maintainers collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Security News
MITRE's 2024 CWE Top 25 highlights critical software vulnerabilities like XSS, SQL Injection, and CSRF, reflecting shifts due to a refined ranking methodology.
Security News
In this segment of the Risky Business podcast, Feross Aboukhadijeh and Patrick Gray discuss the challenges of tracking malware discovered in open source softare.
Research
Security News
A threat actor's playbook for exploiting the npm ecosystem was exposed on the dark web, detailing how to build a blockchain-powered botnet.